home *** CD-ROM | disk | FTP | other *** search
/ Programming in Microsoft Windows with C# / Programacion en Microsoft Windows con C#.iso / Original Code / Console Thyself / ConsoleHelloWorld / ConsoleHelloWorld.cs next >
Encoding:
Text File  |  2001-01-15  |  289 b   |  11 lines

  1. //------------------------------------------------ 
  2. // ConsoleHelloWorld.cs ⌐ 2001 by Charles Petzold
  3. //------------------------------------------------
  4.  
  5. class ConsoleHelloWorld
  6. {
  7.      public static void Main()
  8.      {
  9.           System.Console.WriteLine("Hello, world!");
  10.      }
  11. }